ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / FlexGridBase<T> Class / OnClientPasting Property






In This Topic
    OnClientPasting Property
    In This Topic
    Occurs when the user is pasting content from the clipboard by pressing one of the clipboard shortcut keys (see the autoClipboard property).
    Syntax
    'Declaration
     
    
    Public Overridable Property OnClientPasting As System.String
    'Usage
     
    
    Dim instance As FlexGridBase(Of T)
    Dim value As System.String
     
    instance.OnClientPasting = value
     
    value = instance.OnClientPasting
    public virtual System.string OnClientPasting {get; set;}
    public read-write property OnClientPasting: System.String; virtual; 
    public function get,set OnClientPasting : System.String
    public: __property virtual System.string* get_OnClientPasting();
    public: __property virtual void set_OnClientPasting( 
       System.string* value
    );
    public:
    virtual property System.String^ OnClientPasting {
       System.String^ get();
       void set (    System.String^ value);
    }
    Remarks
    The event handler may cancel the copy operation.
    See Also